'System.Data.Entity.DynamicProxies.ProductDoes not contain a property
with the name ‘ProductId’
I got this error “System.Data.Entity.DynamicProxies.Product Does not contain a property with the name ‘ProductId” while binding the object to the dropdownlist using the c# .net.
Problem:
public void LoadProductsDropDownList()
{
cboProducts.DataTextField = "Name";
cboProducts.DataValueField = "ProductId ";
cboProducts.DataSource = db.Products.ToList();
cboProducts.DataBind();
ListItem li = new ListItem("Select Product", "-1");
cboProducts.Items.Insert(0, li);
}
Solution:
I found the cause of this error due to by mistaken; I left space in DataValueField property field productId . Also, it will happen if you misspelled DataTextField or DataValuefield property values.
public void LoadProductsDropDownList()
{
cboProducts.DataTextField = "Name";
cboProducts.DataValueField = "ProductId";
cboProducts.DataSource = db.Products.ToList();
cboProducts.DataBind();
ListItem li = new ListItem("Select Product", "-1");
cboProducts.Items.Insert(0, li);
}
Post your comments / questions
Recent Article
- How to create custom 404 error page in Django?
- Requested setting INSTALLED_APPS, but settings are not configured. You must either define..
- ValueError:All arrays must be of the same length - Python
- Check hostname requires server hostname - SOLVED
- How to restrict access to the page Access only for logged user in Django
- Migration admin.0001_initial is applied before its dependency admin.0001_initial on database default
- Add or change a related_name argument to the definition for 'auth.User.groups' or 'DriverUser.groups'. -Django ERROR
- Addition of two numbers in django python
Related Article